home *** CD-ROM | disk | FTP | other *** search
- @echo off
- rem
- rem (c) Copyright 1992
- rem Colorado Memory Systems Inc.
- rem All Rights Reserved.
- rem
-
- rem Change Drive
- %1:
-
- rem Change Directory
- cd %2
-
- rem Now run the tape software
- rem If we are running from cmdline, create an error log
-
- if NOT "%3" == "" goto cmdline
- TAPE.EXE %3 %4 %5 %6
- goto end
-
- :cmdline
- TAPE.EXE %3 %4 %5 %6 /b="error.log"
-
- rem Let the user see the results before we return
-
- if NOT "%3" == "" pause
- :end
- @echo on
-
-